home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / wu_ftpd_37_21.lha / wu-ftpd / src / conversions.h < prev    next >
C/C++ Source or Header  |  1994-04-01  |  794b  |  19 lines

  1.  
  2. #define T_REG       1           /* regular files OK */
  3. #define T_DIR       2           /* directories OK */
  4. #define T_ASCII     4           /* ASCII transfers OK */
  5.  
  6. struct convert {
  7.     struct convert *next;
  8.     char *stripprefix;          /* prefix to strip from real file */
  9.     char *stripfix;             /* postfix to strip from real file */
  10.     char *prefix;               /* prefix to add to real file */
  11.     char *postfix;              /* postfix to add to real file */
  12.     char *external_cmd;         /* command to do conversion */
  13.     int types;                  /* types: {file,directory} OK to convert */
  14.     int options;                /* for logging: which conversion(s) used */
  15.     char *name;                 /* description of conversion */
  16. };
  17.  
  18. extern struct convert *cvtptr;
  19.